home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form about_form
- BackColor = &H00FFFFFF&
- Caption = "About MathFlash"
- ClientHeight = 5535
- ClientLeft = 1620
- ClientTop = 1500
- ClientWidth = 7035
- Height = 5940
- Icon = MF_ABOUT.FRX:0000
- Left = 1560
- LinkTopic = "Form1"
- ScaleHeight = 5535
- ScaleWidth = 7035
- Top = 1155
- Width = 7155
- Begin PictureBox Picture1
- BorderStyle = 0 'None
- Height = 495
- Left = 4200
- Picture = MF_ABOUT.FRX:0302
- ScaleHeight = 495
- ScaleWidth = 495
- TabIndex = 3
- Top = 120
- Width = 495
- End
- Begin CommandButton about_exit
- Caption = "Exit"
- Height = 375
- Left = 3000
- TabIndex = 1
- Top = 5040
- Width = 1095
- End
- Begin Label Label1
- Caption = "Label1"
- Height = 615
- Left = 240
- TabIndex = 2
- Top = 120
- Width = 3495
- End
- Begin Label about_text
- BackColor = &H00FFFFFF&
- Caption = " "
- Height = 3975
- Left = 360
- TabIndex = 0
- Top = 960
- Width = 6375
- End
- Sub about_exit_Click ()
- Unload Me
- End Sub
- Sub form_load ()
- nl$ = Chr$(13) + Chr$(10)
- msg1$ = "MathFlash ver 1.00" + nl$
- msg1$ = msg1$ + "Brad Kaufman March, 1993" + nl$
- msg1$ = msg1$ + "Shareware" + nl$
- msg$ = msg$ + nl$
- msg$ = msg$ + "Registered users will receive the individual student tracking module" + nl$
- msg$ = msg$ + "which tracks a students progress over time. Graphs and reports " + nl$
- msg$ = msg$ + "of each individual students percentage correct responses are available." + nl$
- msg$ = msg$ + "This module is highly recommended for use of Mathflash in educational institutions." + nl$
- msg$ = msg$ + nl$
- msg$ = msg$ + "MathFlash was created to provide parents and educational " + nl$
- msg$ = msg$ + "institutions affordable, Windows based software to promote " + nl$
- msg$ = msg$ + "child development. If you find this software useful and would like" + nl$
- msg$ = msg$ + "to see its development continue (and receive the student tracking " + nl$
- msg$ = msg$ + "module) please send $15 to :" + nl$
- msg$ = msg$ + nl$
- msg$ = msg$ + " Brad Kaufman" + nl$
- msg$ = msg$ + " 1912 Stepping Stone Trail" + nl$
- msg$ = msg$ + " Edmond, OK 73013" + nl$
- msg$ = msg$ + nl$
- msg$ = msg$ + "Compuserve ID : 76330,1156"
- msg$ = msg$ + nl$
- msg$ = msg$ + "(comments welcome)"
- Rem picture1.Picture = LoadPicture("mathflsh.ico")
- label1.Caption = msg1$
- about_text.Caption = msg$
- End Sub
-